ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartAxis<T> Class / LogBase Property






In This Topic
    LogBase Property (ChartAxis<T>)
    In This Topic
    Gets or sets the logarithmic base of the axis.
    Syntax
    'Declaration
     
    
    Public Property LogBase As System.Nullable(Of Double)
    'Usage
     
    
    Dim instance As ChartAxis(Of T)
    Dim value As System.Nullable(Of Double)
     
    instance.LogBase = value
     
    value = instance.LogBase
    public System.Nullable<double> LogBase {get; set;}
    public read-write property LogBase: System.Nullable; 
    public function get,set LogBase : System.Nullable
    public: __property System.Nullable<double> get_LogBase();
    public: __property void set_LogBase( 
       System.Nullable<double> value
    );
    public:
    property System.Nullable<double> LogBase {
       System.Nullable<double> get();
       void set (    System.Nullable<double> value);
    }
    Remarks
    If the base is not specified the axis uses the normal scale.
    See Also